Release v0.3.0 - Advanced Linear Solver & Module Reorganization#4
Merged
thanhndv212 merged 16 commits intomainfrom Nov 17, 2025
Merged
Release v0.3.0 - Advanced Linear Solver & Module Reorganization#4thanhndv212 merged 16 commits intomainfrom
thanhndv212 merged 16 commits intomainfrom
Conversation
… parameter extraction
… for robot calibration
…robot calibration
…fig module for better organization
…ethods and regularization
Integrated all devel branch features including: - Advanced linear solver with 10 solving methods - Module reorganization (calibration & identification) - BaseIdentification enhancement - Comprehensive test coverage (18 tests) Resolved CHANGELOG.md conflict by preserving both histories: - Kept main branch releases (0.2.4, 0.2.3, 0.2.0, 0.1.0) - Added devel v0.3.0 unreleased section at top
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🚀 Overview
This release introduces a comprehensive advanced linear solver for robot parameter identification, along with significant module reorganization for improved code maintainability and extensibility.
✨ Major Features
1. Advanced Linear Solver (
figaroh.tools.solver)lstsq,qr,svdridge,lasso,elastic_net,tikhonovconstrained,robust,weighted2. Module Reorganization
Calibration Module:
config.py(624 lines): Configuration parsing & YAML handlingparameter.py(240 lines): Parameter management utilitiesdata_loader.py(160 lines): Data loading & I/O operationsIdentification Module:
config.py(334 lines): Configuration parsingparameter.py(388 lines): Parameter managementCode Reduction:
calibration_tools.py: -58% (1,500 → 630 lines)identification_tools.py: -67% (900 → 295 lines)3. BaseIdentification Enhancement
solve_with_custom_solver()method🔧 Improvements
Parameter Ordering
Changed to Pinocchio dynamic parameter ordering:
[Ixx, Ixy, Ixz, Iyy, Iyz, Izz, mx, my, mz, m][m, mx, my, mz, Ixx, Ixy, Iyy, Ixz, Iyz, Izz]Regressor Module
build_basic_regressormethodstauparameterCode Quality
🧪 Testing
tests/unit/test_solver.py🐛 Bug Fixes
📝 Files Changed
🔄 Migration Notes
🔗 Related
✅ Checklist